Skip to content

chore(deps): bump the npm-astro-dependencies group across 1 directory with 7 updates#779

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/npm-astro-dependencies-352c2c9195
Closed

chore(deps): bump the npm-astro-dependencies group across 1 directory with 7 updates#779
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/npm-astro-dependencies-352c2c9195

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 28, 2025

Updates the requirements on @astrojs/mdx, @astrojs/react, @astrojs/sitemap, @astrojs/tailwind, astro, astro-auto-import and astro-font to permit the latest version.
Updates @astrojs/mdx to 4.2.5

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​4.2.5

Patch Changes

Changelog

Sourced from @​astrojs/mdx's changelog.

4.2.5

Patch Changes

4.2.4

Patch Changes

4.2.3

Patch Changes

4.2.2

Patch Changes

4.2.1

Patch Changes

4.2.0

Minor Changes

  • #13352 cb886dc Thanks @​delucis! - Adds support for a new experimental.headingIdCompat flag

    By default, Astro removes a trailing - from the end of IDs it generates for headings ending with special characters. This differs from the behavior of common Markdown processors.

    You can now disable this behavior with a new configuration flag:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';

... (truncated)

Commits

Updates @astrojs/react to 4.2.5

Release notes

Sourced from @​astrojs/react's releases.

@​astrojs/react@​4.2.5

Patch Changes

Changelog

Sourced from @​astrojs/react's changelog.

4.2.5

Patch Changes

4.2.4

Patch Changes

4.2.3

Patch Changes

4.2.2

Patch Changes

4.2.1

Patch Changes

  • #13323 80926fa Thanks @​ematipico! - Updates esbuild and vite to the latest to avoid false positives audits warnings caused by esbuild.

4.2.0

Minor Changes

  • #13036 3c90d8f Thanks @​artmsilva! - Adds experimental support for disabling streaming

    This is useful to support libraries that are not compatible with streaming such as some CSS-in-JS libraries. To disable streaming for all React components in your project, set experimentalDisableStreaming: true as a configuration option for @astrojs/react:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    import react from '@astrojs/react';
    export default defineConfig({
    integrations: [
    react({
    
    
     experimentalDisableStreaming: true,
    
    }),

... (truncated)

Commits

Updates @astrojs/sitemap to 3.3.1

Release notes

Sourced from @​astrojs/sitemap's releases.

@​astrojs/sitemap@​3.3.1

Patch Changes

Changelog

Sourced from @​astrojs/sitemap's changelog.

3.3.1

Patch Changes

3.3.0

Minor Changes

3.2.1

Patch Changes

3.2.0

Minor Changes

3.1.6

Patch Changes

3.1.5

Patch Changes

3.1.4

Patch Changes

3.1.3

Patch Changes

3.1.2

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by matthewp, a new releaser for @​astrojs/sitemap since your current version.


Updates @astrojs/tailwind to 6.0.2

Release notes

Sourced from @​astrojs/tailwind's releases.

@​astrojs/tailwind@​6.0.2

Patch Changes

Changelog

Sourced from @​astrojs/tailwind's changelog.

6.0.2

Patch Changes

6.0.1

Patch Changes

6.0.0

Major Changes

  • #13049 2ed4bd9 Thanks @​florian-lefebvre! - Deprecates the integration

    Tailwind CSS now offers a Vite plugin which is the preferred way to use Tailwind 4 in Astro. Please uninstall @astrojs/tailwind and follow the Tailwind documentation for manual installation.

    This updated major version is only provided as a convenience for existing projects until they are able to migrate to the new plugin. It offers no additional functionality and is no longer recommended, but may continue to be used in your projects until it is removed entirely.

5.1.5

Patch Changes

5.1.4

Patch Changes

5.1.3

Patch Changes

6.0.0-alpha.0

Patch Changes

5.1.2

Patch Changes

... (truncated)

Commits

Updates astro to 5.7.7

Release notes

Sourced from astro's releases.

astro@5.7.7

Patch Changes

Changelog

Sourced from astro's changelog.

5.7.7

Patch Changes

5.7.6

Patch Changes

  • #13703 659904b Thanks @​ascorbic! - Fixes a bug where empty fallbacks could not be provided when using the experimental fonts API

  • #13680 18e1b97 Thanks @​florian-lefebvre! - Improves the UnsupportedExternalRedirect error message to include more details such as the concerned destination

  • #13703 659904b Thanks @​ascorbic! - Simplifies styles for experimental responsive images

    ⚠️ BREAKING CHANGE FOR EXPERIMENTAL RESPONSIVE IMAGES ONLY ⚠️

    The generated styles for image layouts are now simpler and easier to override. Previously the responsive image component used CSS to set the size and aspect ratio of the images, but this is no longer needed. Now the styles just include object-fit and object-position for all images, and sets max-width: 100% for constrained images and width: 100% for full-width images.

    This is an implementation change only, and most users will see no change. However, it may affect any custom styles you have added to your responsive images. Please check your rendered images to determine whether any change to your CSS is needed.

    The styles now use the :where() pseudo-class, which has a specificity of 0, meaning that it is easy to override with your own styles. You can now be sure that your own classes will always override the applied styles, as will global styles on img.

    An exception is Tailwind 4, which uses cascade layers, meaning the rules are always lower specificity. Astro supports browsers that do not support cascade layers, so we cannot use this. If you need to override the styles using Tailwind 4, you must use !important classes. Do check if this is needed though: there may be a layout that is more appropriate for your use case.

  • #13703 659904b Thanks @​ascorbic! - Adds warnings about using local font files in the publicDir when the experimental fonts API is enabled.

  • #13703 659904b Thanks @​ascorbic! - Renames experimental responsive image layout option from "responsive" to "constrained"

    ⚠️ BREAKING CHANGE FOR EXPERIMENTAL RESPONSIVE IMAGES ONLY ⚠️

    The layout option called "responsive" is renamed to "constrained" to better reflect its behavior.

    The previous name was causing confusion, because it is also the name of the feature. The responsive layout option is specifically for images that are displayed at the requested size, unless they do not fit the width of their container, at which point they would be scaled down to fit. They do not get scaled beyond the intrinsic size of the source image, or the width prop if provided.

    It became clear from user feedback that many people (understandably) thought that they needed to set layout to responsive if they wanted to use responsive images. They then struggled with overriding styles to make the image scale up for full-width hero images, for example, when they should have been using full-width layout. Renaming the layout to constrained should make it clearer that this layout is for when you want to constrain the maximum size of the image, but allow it to scale-down.

    Upgrading

... (truncated)

Commits

Updates astro-auto-import to 0.4.4

Release notes

Sourced from astro-auto-import's releases.

astro-auto-import@0.4.4

Patch Changes

  • f7c02dc: Adds support for Astro v5
Changelog

Sourced from astro-auto-import's changelog.

0.4.4

Patch Changes

  • f7c02dc: Adds support for Astro v5

0.4.3

Patch Changes

  • d7fdae6: Add utility keyword for better categorization in the Astro integrations library

0.4.2

Patch Changes

  • 13b07e1: Support Astro v4

0.4.1

Patch Changes

  • 5b9b278: Improve README

0.4.0

Minor Changes

  • ec5f241: Added support for namespace imports, for importing all named exports from a module.

    AutoImport({
      imports: [
        {
          // Import all named exports from a module as a namespace
          // generates:
          // import * as Components from './src/components';
          './src/components': 'Components',
        },
      ],
    }),

Patch Changes

  • ea93946: refactor: strip out old “exposures” code

0.3.2

Patch Changes

... (truncated)

Commits

Updates astro-font from 0.0.77 to 1.1.0

Release notes

Sourced from astro-font's releases.

astro-font@0.0.80

In astro-font@^0.0.80, the CSS font parser for fonts loading over CDN such as Google Fonts, TypeKit, etc. has improved. It's now able to map over each attribute of font-face property returned by CDN, and creates an equivalent CSS.

To create in-browser like requests, each outgoing request is appended with the 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36' header. This helps obtain the unicode-range which optimizes the in-browser font downloading as if the page doesn't use any character in that range, the font is not downloaded at all.

astro-font@0.0.79

In astro-font@^0.0.79, there are type values introduced for the following CSS properties, allowing you to choose the values based on standard web practices in your IDE.

To keep it backward compatible, any kind of string or number value is allowed.

astro-font@0.0.78

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

… with 7 updates

Updates the requirements on [@astrojs/mdx](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx), [@astrojs/react](https://github.com/withastro/astro/tree/HEAD/packages/integrations/react), [@astrojs/sitemap](https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap), [@astrojs/tailwind](https://github.com/withastro/astro/tree/HEAD/packages/integrations/tailwind), [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro), [astro-auto-import](https://github.com/delucis/astro-auto-import/tree/HEAD/packages/astro-auto-import) and [astro-font](https://github.com/rishi-raj-jain/astro-font) to permit the latest version.

Updates `@astrojs/mdx` to 4.2.5
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/mdx/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/mdx@4.2.5/packages/integrations/mdx)

Updates `@astrojs/react` to 4.2.5
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/react/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/react@4.2.5/packages/integrations/react)

Updates `@astrojs/sitemap` to 3.3.1
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/sitemap/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/sitemap@3.3.1/packages/integrations/sitemap)

Updates `@astrojs/tailwind` to 6.0.2
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/@astrojs/tailwind@6.0.2/packages/integrations/tailwind/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/tailwind@6.0.2/packages/integrations/tailwind)

Updates `astro` to 5.7.7
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/astro@5.7.7/packages/astro)

Updates `astro-auto-import` to 0.4.4
- [Release notes](https://github.com/delucis/astro-auto-import/releases)
- [Changelog](https://github.com/delucis/astro-auto-import/blob/main/packages/astro-auto-import/CHANGELOG.md)
- [Commits](https://github.com/delucis/astro-auto-import/commits/astro-auto-import@0.4.4/packages/astro-auto-import)

Updates `astro-font` from 0.0.77 to 1.1.0
- [Release notes](https://github.com/rishi-raj-jain/astro-font/releases)
- [Commits](https://github.com/rishi-raj-jain/astro-font/commits/1.1.0)

---
updated-dependencies:
- dependency-name: "@astrojs/mdx"
  dependency-version: 4.2.5
  dependency-type: direct:production
  dependency-group: npm-astro-dependencies
- dependency-name: "@astrojs/react"
  dependency-version: 4.2.5
  dependency-type: direct:production
  dependency-group: npm-astro-dependencies
- dependency-name: "@astrojs/sitemap"
  dependency-version: 3.3.1
  dependency-type: direct:production
  dependency-group: npm-astro-dependencies
- dependency-name: "@astrojs/tailwind"
  dependency-version: 6.0.2
  dependency-type: direct:production
  dependency-group: npm-astro-dependencies
- dependency-name: astro
  dependency-version: 5.7.7
  dependency-type: direct:production
  dependency-group: npm-astro-dependencies
- dependency-name: astro-auto-import
  dependency-version: 0.4.4
  dependency-type: direct:production
  dependency-group: npm-astro-dependencies
- dependency-name: astro-font
  dependency-version: 1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-astro-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 28, 2025
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 11, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this May 11, 2025
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/npm-astro-dependencies-352c2c9195 branch May 11, 2025 19:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants